home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / DEMOS / GLIQ / Imakefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  642 b   |  30 lines

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1994. */
  3.  
  4. #include "../../../Glut.cf"
  5.  
  6. TARGETS = gliq
  7.  
  8. SRCS = board.c game.c gliq.c pick.c score.c tb.c trackball.c
  9.  
  10. AllTarget($(TARGETS))
  11.  
  12. NormalGlutProgramTarget(gliq,board.o game.o gliq.o pick.o score.o tb.o trackball.o)
  13.  
  14. LinkFile(trackball.c, ../../examples/trackball.c)
  15. LinkFile(trackball.h, ../../examples/trackball.h)
  16.  
  17. trackball.o: trackball.h
  18. tb.o: trackball.h
  19. gliq.h: trackball.h
  20. board.c: gliq.h
  21. game.c: gliq.h
  22. gliq.c: gliq.h
  23. pick.c: gliq.h
  24. score.c: gliq.h
  25.  
  26. /* some old imake configs do setup "make depend" dependencies on linked files */
  27. depend:: trackball.c trackball.h tb.c tb.h
  28.  
  29. DependTarget()
  30.